/* Custom CSS - Roboto Font Overrides for Material Design Consistency */

/* Header Shadow for Depth */
header.sticky-top {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Navbar logo sizing */
.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand img {
  max-height: 50px;
  width: auto;
}

/* Brand text next to logo (mobile only) */
.brand-text {
  font-weight: 700;
  font-size: 18px;
  color: #f9a743;
  vertical-align: middle;
}

/* Social icons horizontal layout in mobile menu */
@media (max-width: 991px) {
  .navbar-brand img {
    max-height: 35px;
    width: auto;
  }

  .social-icons-header {
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 15px !important;
    padding-top: 15px;
    border-top: 1px solid #eee;
  }

  .social-icons-header .nav-item {
    flex: 0 0 auto;
  }
}

/* Apply Roboto font to all text elements */
body,
h1, h2, h3, h4, h5, h6,
p, li, a, span,
.btn,
.nav-link {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

/* Improve readability for content pages (Privacy, Terms, Contact) */
.content p,
.content li {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  color: #333;
}

.content h1 {
  font-weight: 500;
  margin-bottom: 1rem;
}

.content h2,
.content h3,
.content h4 {
  font-weight: 500;
  margin-top: 1.5em;
  margin-bottom: 0.75em;
  color: #222;
}

.content h2 {
  font-size: 28px;
}

.content h3 {
  font-size: 22px;
}

.content h4 {
  font-size: 18px;
}

/* Better spacing for lists in content */
.content ul,
.content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.content li {
  margin-bottom: 0.5rem;
}

/* Improve strong/bold text readability */
.content strong {
  font-weight: 500;
}

/* Contact page improvements */
.contact-list li {
  font-size: 16px;
}

/* Social Media Links in Footer */
.social-links {
  margin: 2rem 0;
}

.social-links li {
  margin: 0 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #f5f5f5;
  color: #555;
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background-color: #f9a743;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(249, 167, 67, 0.3);
}

/* Features Section - Per-feature screenshot layout */
#features .feature-row {
  padding: 15px 0;
}

#features .feature-screenshot {
  max-width: 140px;
  max-height: 280px;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#features .feature-text-col {
  padding: 10px 15px;
}

#features .feature-image-col {
  padding: 10px 15px;
}

/* Mobile: add spacing between stacked feature pairs */
@media (max-width: 767px) {
  #features .feature-row > .col-md-6 {
    margin-bottom: 30px;
  }

  #features .feature-row > .col-md-6:last-child {
    margin-bottom: 0;
  }

  #features .feature-screenshot {
    max-width: 120px;
    max-height: 240px;
    margin-bottom: 15px;
  }
}

/* Small mobile: tighten screenshot size */
@media (max-width: 575px) {
  #features .feature-screenshot {
    max-width: 100px;
    max-height: 200px;
  }

  #features .feature-row {
    padding: 10px 0;
  }
}

/* Banner Section - Screenshot sizing (larger than features) */
.banner-screenshot {
  max-width: 250px;
  max-height: 500px;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Brand name styling in banner title */
.brand-name {
  color: #f9a743;
  display: block;
}

/* About Product Section - Screenshot sizing */
.feature-list .about-screenshot {
  max-width: 140px;
  max-height: 280px;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
  .banner-screenshot {
    max-width: 200px;
    max-height: 400px;
  }

  .feature-list .about-screenshot {
    max-width: 120px;
    max-height: 240px;
  }
}

@media (max-width: 575px) {
  .banner-screenshot {
    max-width: 160px;
    max-height: 320px;
  }

  .feature-list .about-screenshot {
    max-width: 100px;
    max-height: 200px;
  }
}
